home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / Cluster.h < prev    next >
C/C++ Source or Header  |  1992-04-27  |  534b  |  25 lines

  1. #ifndef Cluster_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define Cluster_First
  7.  
  8. #include "Box.h"
  9.  
  10. //---- Cluster -----------------------------------------------------------------
  11.  
  12. class Cluster: public Box {
  13. public:
  14.     MetaDef(Cluster);
  15.  
  16.     Cluster(int id, VObjAlign a= eVObjVBase, Point g= gPoint0);
  17.     Cluster(int id, VObjAlign a, Point g, SeqCollection *cp);
  18.     Cluster(int id, VObjAlign a, Point g, VObject *,...);
  19.     Cluster(int id, VObjAlign a, Point g, va_list);
  20. protected:
  21.     void Init();
  22. };
  23.  
  24. #endif
  25.